home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d16
/
uc_30b.arc
/
GDI.SCR
< prev
next >
Wrap
Text File
|
1991-09-29
|
354b
|
21 lines
; Gdi.scr - draw unicom boxes on screen
i = 0
j = 0
GdiCreatePen(0, 1,255,0,0)
GdiCreateBrush(0,0,0)
while (j< 350)
i=0
while (i<640)
l = 0
while (l < 20)
GdiRectangle(i-l,j+l,i+40+l,j+60-l)
l = l+5
endwhile
gditextout(i - l/2,j+l,"UNICOM")
i=i+80
endwhile
j=j+60
endwhile
exit